home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Musik / Misc / Amster / Rexx / PlayAmigaAmp.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  2000-01-01  |  265 b   |  19 lines

  1. /*
  2. ** Play
  3. */
  4.  
  5. playerpath = 'Apps:Sound/Players/AmigaAmp/AmigaAmp'
  6.  
  7. parse arg filename
  8. options results
  9.  
  10. if ~show('P','AMIGAAMP') then address command 'run <>nil: 'playerpath
  11.  
  12. do while ~show('P','AMIGAAMP')
  13.    call delay(50)
  14. end
  15.  
  16. address 'AMIGAAMP'
  17.  
  18. 'OPEN 'filename
  19.